home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / graphics / font.zip / REST.POV < prev    next >
Text File  |  1994-08-09  |  3KB  |  70 lines

  1. /*  
  2.      rest.pov - File to render rest of characters.
  3.  
  4.      Created by:
  5.  
  6.      Michael Hartman
  7.      hartmms@eng.auburn.edu 
  8.      http://www.eng.auburn.edu/~hartmms/home.html
  9.      Auburn University
  10.  
  11. */ 
  12.      
  13. #include "font.inc"
  14.  
  15. camera {  //  Camera StdCam
  16.      location <24, -40, 9>
  17.      direction <0.0,     0.0,  2.5>
  18.      sky       <0.0,     0.0,  1.0>    // Use right handed-system!
  19.      up        <0.0,     0.0,  1.0>    // Where Z is up
  20.      right   <1.3333,  0.0,  0.0>      // Set aspect ratio
  21.      look_at <5.75, 0, (3.25+THICK*4)> 
  22. }
  23.  
  24. light_source {   
  25.      <20,30,66>        
  26.      color rgb <1.000, 1.000, 1.000>
  27. }
  28. light_source {   
  29.      <0,-20,10>
  30.      color rgb <1.000, 1.000, 1.000>
  31. }
  32.  
  33. // Floor
  34.  
  35. plane { z,0 pigment { color rgb <0.5, 0.5, 0.5>} }        
  36.  
  37. // Characters 
  38.  
  39. union {
  40.      object {  font_0           translate <0, 0, (7.5+THICK*6) > }
  41.      object {  font_1           translate <1.5, 0, (7.5+THICK*6)> }
  42.      object {  font_2           translate <3.0, 0, (7.5+THICK*6)> }
  43.      object {  font_3           translate <4.5, 0, (7.5+THICK*6)> }
  44.      object {  font_4           translate <6.0, 0, (7.5+THICK*6)> }
  45.      object {  font_5           translate <7.5, 0, (7.5+THICK*6)> }
  46.      object {  font_6           translate <9, 0, (7.5+THICK*6)>   }
  47.      object {  font_7           translate <10.5, 0, (7.5+THICK*6)> }
  48.                      
  49.      object {  font_8           translate <-0.75, 0, (5+THICK*4)> }
  50.      object {  font_9           translate <0.75, 0, (5+THICK*4) > }
  51.      object {  font_angstrom    translate <3.75, 0, (5+THICK*4) > }
  52.      object {  font_exclamation translate <5.25, 0, (5+THICK*4) > }
  53.      object {  font_pound       translate <6.75, 0, (5+THICK*4) > }
  54.      object {  font_dollar      translate <8.25, 0, (5+THICK*4) > }
  55.      object {  font_up          translate <9.75, 0, (5+THICK*4) > }
  56.      object {  font_slash       translate <11.25, 0, (5+THICK*4)> }
  57.                                                         
  58.      object {  font_backslash   translate <-0.75, 0, (2.5+THICK*2)> }
  59.      object {  font_percent     translate <0.75, 0, (2.5+THICK*2) > }
  60.      object {  font_star        translate <2.25, 0, (2.5+THICK*2) > }
  61.      object {  font_leftp       translate <3.75, 0, (2.5+THICK*2) > }
  62.      object {  font_rightp      translate <5.25, 0, (2.5+THICK*2) > }
  63.      object {  font_plus        translate <6.75, 0, (2.5+THICK*2) > }
  64.      object {  font_minus       translate <8.25, 0, (2.5+THICK*2) > }
  65.      object {  font_apostrophe  translate <9.75, 0, (2.5+THICK*2) > }
  66.      object {  font_quote       translate <11.25, 0, (2.5+THICK*2) > }
  67.  
  68.      pigment { color rgb <0, 0, 1> }  // Color them blue
  69. }
  70.